From 39f829545743390ad3f896a6997097446c0204f0 Mon Sep 17 00:00:00 2001 From: John Audia Date: Thu, 16 Oct 2025 08:09:24 -0400 Subject: [PATCH] snort3: fix typo preventing vectorscan detection Since vectorscan-runtime was dropped in the following commit, need to replace references to it with just vectorscan in order to compile snort3 against it: https://github.com/openwrt/packages/commit/8a3c7a69e649a9a5cbb0a642a661dd480b8583ff Without this change, even having CONFIG_PACKAGE_vectorscan=y in the .config will result in a failure to compile against it, e.g: ... Feature options: DAQ Modules: Dynamic libatomic: User-specified Hyperscan: OFF ... Signed-off-by: John Audia --- net/snort3/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/snort3/Makefile b/net/snort3/Makefile index 5335575e73..58fcee22f6 100644 --- a/net/snort3/Makefile +++ b/net/snort3/Makefile @@ -59,7 +59,7 @@ CMAKE_OPTIONS += \ -DHAVE_LZMA=ON \ -DENABLE_TCMALLOC=$(if $(CONFIG_PACKAGE_gperftools),ON,OFF) \ -DENABLE_HYPERSCAN=$(if $(CONFIG_PACKAGE_vectorscan),ON,OFF) \ - $(if $(CONFIG_PACKAGE_vectorscan-runtime),-DHS_INCLUDE_DIRS=$(STAGING_DIR)/usr/include/hs) + $(if $(CONFIG_PACKAGE_vectorscan),-DHS_INCLUDE_DIRS=$(STAGING_DIR)/usr/include/hs) TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include/daq3 -- 2.30.2